home *** CD-ROM | disk | FTP | other *** search
/ Club KidSoft Volume 3 #2 / CKSPCV32.BIN / movies / clubroom.dir / 00171_Script_TV Init < prev    next >
Text File  |  1995-04-03  |  447b  |  18 lines

  1. on enterFrame
  2.   global gCurrentButton
  3.   set gCurrentButton = 0
  4.   set the visible of sprite 27 to TRUE
  5.   
  6.   StartSound "DRUMROLL.AIF"
  7.   
  8.   repeat with i = 29 to 30
  9.     set the visible of sprite i to false
  10.   end repeat
  11.   
  12.   global gTvIndex, gTvLastMovie, gTvFirstMovie
  13.   set gTvFirstMovie = the number of cast "CTV1.MOV"
  14.   set gTvLastMovie = the number of cast "CTV6.MOV"
  15.   set gTvIndex = gTvLastMovie
  16.   
  17.   preLoad the frame + 1
  18. end